Skip to main content
Version: 1.0.2

Validate CVV

Validating Card Verification Value (CVV) of card.

Method: POST
{{URL}}/cardv2
Headers
NameValue
Content-Typeapplication/json
Payload Parameters
ParametersDescription

transactionType

Mandatory

String

Type of operation / transaction

Constant Value: "VALIDATE_CVV"

product

Mandatory

String

Name of the product associated with the card

Sample Value: "DEFAULT"

channel

Mandatory

Enum

Processing channel through which the card transaction happens

Valid Values:

PULSE

VISA_DPS

Sample Value: "VISA_DPS"

program

Mandatory

String

Name of the program to which the card product is mapped

Sample Value: "DEFAULT"

cardId

Mandatory

String

Unique ID of the card

Sample Value: "6f586be7bf1c44b8b4ea11b2e2510e25"

cardCvv

Mandatory

String

Encrypted Card Verification Value (CVV) of the card given for validation

Sample Value: "fbbVg8NQFDwa5rtkjR+Wa4wqiZwUWoxaUVLO2fTFgeYvQ9RGBfyl6H0rpCvtEoEbhbVFTuJGX8hdgjfptOynnrKD5DUFpK0RDi+URuKIunzbiQ9Gq6iqs54S2LaWH0ZVwsvPb4HiP1mOX88oV7xZc7rzWcG1nOBErogItPTijlG/UMvVWU0SYMd+fjBNqMcdMeFe3GLch3KMFpAC4yC+sTSyLj9W8C0vOhF2bA3voxX2Vb5Xv27oR8Xn6jKoR+/ZzK0Ch3aF06P+Xxto/ZGZyvdxsN+s2ldEu+vHbK6QwXC30/U+J8TFOQ0rIbZny3LOtaBK0sbflAdLNlQwaFmCfQ=="

isEncrypt

Mandatory

String

CVV should be mandatorily encrypted to ensure protection of card holder information

Constant Value: "true"


curl --location --globoff --request GET '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"transactionType":"VALIDATE_CVV","product":"DEFAULT","channel":"VISA_DPS","program":"DEFAULT","cardId":"6f586be7bf1c44b8b4ea11b2e2510e25","cardCvv":"fbbVg8NQFDwa5rtkjR+Wa4wqiZwUWoxaUVLO2fTFgeYvQ9RGBfyl6H0rpCvtEoEbhbVFTuJGX8hdgjfptOynnrKD5DUFpK0RDi+URuKIunzbiQ9Gq6iqs54S2LaWH0ZVwsvPb4HiP1mOX88oV7xZc7rzWcG1nOBErogItPTijlG/UMvVWU0SYMd+fjBNqMcdMeFe3GLch3KMFpAC4yC+sTSyLj9W8C0vOhF2bA3voxX2Vb5Xv27oR8Xn6jKoR+/ZzK0Ch3aF06P+Xxto/ZGZyvdxsN+s2ldEu+vHbK6QwXC30/U+J8TFOQ0rIbZny3LOtaBK0sbflAdLNlQwaFmCfQ==","isEncrypt":true},"api":{"signature":"{{signature}}","apiKey":"{{Api-key}}","credential":"{{cred}}"}}}'

Body
{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"transactionType": "VALIDATE_CVV",
"product": "DEFAULT",
"channel": "VISA_DPS",
"program": "DEFAULT",
"cardId": "6f586be7bf1c44b8b4ea11b2e2510e25",
"cardCvv": "fbbVg8NQFDwa5rtkjR+Wa4wqiZwUWoxaUVLO2fTFgeYvQ9RGBfyl6H0rpCvtEoEbhbVFTuJGX8hdgjfptOynnrKD5DUFpK0RDi+URuKIunzbiQ9Gq6iqs54S2LaWH0ZVwsvPb4HiP1mOX88oV7xZc7rzWcG1nOBErogItPTijlG/UMvVWU0SYMd+fjBNqMcdMeFe3GLch3KMFpAC4yC+sTSyLj9W8C0vOhF2bA3voxX2Vb5Xv27oR8Xn6jKoR+/ZzK0Ch3aF06P+Xxto/ZGZyvdxsN+s2ldEu+vHbK6QwXC30/U+J8TFOQ0rIbZny3LOtaBK0sbflAdLNlQwaFmCfQ==",
"isEncrypt": true
},
"api": {
"signature": "{{signature}}",
"apiKey": "{{Api-key}}",
"credential": "{{cred}}"
}
}
}

Response: 200

Response Parameters
ParametersDescription

Id

String

Response ID echoed from the request ID

Sample Value: "1"

result

Object

cardId

String

Unique ID of the card for which the CVV validation was performed

Sample Value: "6f586be7bf1c44b8b4ea11b2e2510e25"

api

Object

type

String

Acknowledgement for type of operation requested for

Sample Value: "VALIDATE_CVV_ACK"

reference

String

Unique reference for the API response

Sample Value: "REF"

dateCreated

Number

Unix timestamp of the response was created

Sample Value: 1732087371

message

String

Message indicating the response of CVV validation process, confirming that the CVV provided was correct and has been validated

Sample Value: "CVV has been validated successfully"


{
"id": "1",
"result": {
"cardId": "6f586be7bf1c44b8b4ea11b2e2510e25",
"api": {
"type": "VALIDATE_CVV_ACK",
"reference": "REF",
"dateCreated": 1732087371
},
"message": "CVV has been validated successfully"
}
}